New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

basscss-base-forms

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

basscss-base-forms

Base form styles for Basscss

  • 2.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
56
decreased by-80.35%
Maintainers
1
Weekly downloads
 
Created
Source

This modules sets structural styles for base form elements, creating a consistent visual rhythm among forms while allowing for color to be adjusted where needed. These styles do not rely on markup structure and can be combined with utilities to make fine-grained, contextual adjustments. Form element styles are intended to be interoperable with all other utility styles.

Inline Forms

By default, form elements follow browser defaults and display inline. Note: the .field style is part of basscss-color-forms.

<form>
  <label for="search">Search</label>
  <input id="search" type="text" class="field">
  <button class="btn btn-primary">Go</button>
</form>

Stacked Forms

Use .block, .col-12, and other layout utilities to stack form elements and adjust margins.

<form class="sm-col-6">
  <label>Email Address</label>
  <input type="text" class="block col-12 mb1 field">
  <label>Password</label>
  <input type="password" class="block col-12 mb1 field">
  <label>Select</label>
  <select class="block col-12 mb1 field">
    <option>Option 1</option>
    <option>Option 2</option>
    <option>Option 3</option>
    <option>Option 4</option>
    <option>Option 5</option>
  </select>
  <label class="block col-12 mb2">
    <input type="checkbox" checked>
    Remember me
  </label>
  <button type="submit" class="btn btn-primary">Sign In</button>
  <button type="reset" class="btn btn-primary black bg-gray">Cancel</button>
</form>

To adjust the color of forms, use the styles in basscss-color-forms and basscss-color-forms-dark.

Keywords

FAQs

Package last updated on 06 Feb 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc